projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
50c2d2e
)
arm: mx6: cm-fx6: add splash locations to cm-fx6
author
Nikita Kiryanov
<
[email protected]
>
Thu, 29 Oct 2015 09:54:44 +0000
(11:54 +0200)
committer
Stefano Babic
<
[email protected]
>
Mon, 16 Nov 2015 11:01:36 +0000
(12:01 +0100)
Add the following splash locations to cm-fx6:
* filesystem formatted mmc
* filesystem formatted usb
* filesystem formatted sata
Cc: Igor Grinberg <
[email protected]
>
Cc: Tom Rini <
[email protected]
>
Signed-off-by: Nikita Kiryanov <
[email protected]
>
Acked-by: Igor Grinberg <
[email protected]
>
board/compulab/cm_fx6/cm_fx6.c
patch
|
blob
|
history
diff --git
a/board/compulab/cm_fx6/cm_fx6.c
b/board/compulab/cm_fx6/cm_fx6.c
index 202a178e6a73ddd81eb7f29f6a4118aa6f150e72..a21e7b00e1f0f24d2d7de9b1957cf66724df1841 100644
(file)
--- a/
board/compulab/cm_fx6/cm_fx6.c
+++ b/
board/compulab/cm_fx6/cm_fx6.c
@@
-42,6
+42,24
@@
static struct splash_location cm_fx6_splash_locations[] = {
.flags = SPLASH_STORAGE_RAW,
.offset = 0x100000,
},
+ {
+ .name = "mmc_fs",
+ .storage = SPLASH_STORAGE_MMC,
+ .flags = SPLASH_STORAGE_FS,
+ .devpart = "2:1",
+ },
+ {
+ .name = "usb_fs",
+ .storage = SPLASH_STORAGE_USB,
+ .flags = SPLASH_STORAGE_FS,
+ .devpart = "0:1",
+ },
+ {
+ .name = "sata_fs",
+ .storage = SPLASH_STORAGE_SATA,
+ .flags = SPLASH_STORAGE_FS,
+ .devpart = "0:1",
+ },
};
int splash_screen_prepare(void)